home *** CD-ROM | disk | FTP | other *** search
/ IRIX Installation Tools & Overlays 2002 November / SGI IRIX Installation Tools & Overlays 2002 November - Disc 4.iso / dist / motif21_dev.idb / usr / Motif-2.1 / include / Xm / DialogSEP.h.z / DialogSEP.h
C/C++ Source or Header  |  2002-10-15  |  2KB  |  91 lines

  1. /* 
  2.  *  @OSF_COPYRIGHT@
  3.  *  COPYRIGHT NOTICE
  4.  *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
  5.  *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
  6.  *  the full copyright text.
  7. */ 
  8. /* 
  9.  * HISTORY
  10. */ 
  11. /*   $XConsortium: DialogSEP.h /main/10 1995/07/14 10:19:17 drk $ */
  12. /*
  13. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  14. /*
  15. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  16. /*
  17. *  (c) Copyright 1988 MASSACHUSETTS INSTITUTE OF TECHNOLOGY  */
  18. /*
  19. *  (c) Copyright 1988 MICROSOFT CORPORATION */
  20. #ifndef _XmDialogShellExtP_h
  21. #define _XmDialogShellExtP_h
  22.  
  23. #include <Xm/VendorSEP.h>
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29.  
  30. #ifndef XmIsDialogShellExt
  31. #define XmIsDialogShellExt(w)    XtIsSubclass(w, xmDialogShellExtObjectClass)
  32. #endif /* XmIsDialogShellExt */
  33.  
  34. externalref WidgetClass xmDialogShellExtObjectClass;
  35.  
  36. typedef struct _XmDialogShellExtClassRec    *XmDialogShellExtObjectClass ;
  37. typedef struct _XmDialogShellExtRec        *XmDialogShellExtObject ;
  38.  
  39.  
  40. typedef struct _XmDialogShellExtClassPart{
  41.    XtPointer extension;   /* Pointer to extension record */
  42.    
  43. #ifdef _SGIMOTIF
  44.    XtPointer    _SG_vendorExtension;
  45. #endif
  46.  
  47. }XmDialogShellExtClassPart, *XmDialogShellExtClassPartPtr;
  48.  
  49. typedef struct _XmDialogShellExtClassRec{
  50.     ObjectClassPart        object_class;
  51.     XmExtClassPart        ext_class;
  52.     XmDesktopClassPart        desktop_class;
  53.     XmShellExtClassPart        shell_class;
  54.     XmVendorShellExtClassPart     vendor_class;
  55.     XmDialogShellExtClassPart     dialog_class;
  56. }XmDialogShellExtClassRec;
  57.  
  58. typedef struct _XmDialogShellExtPart{
  59.     int                  empty;
  60.     
  61. #ifdef _SGIMOTIF
  62.     XtPointer    _SG_vendorExtension;
  63. #endif
  64.  
  65. } XmDialogShellExtPart;
  66.  
  67. externalref XmDialogShellExtClassRec     xmDialogShellExtClassRec;
  68.  
  69. typedef struct _XmDialogShellExtRec{
  70.     ObjectPart            object;
  71.     XmExtPart            ext;
  72.     XmDesktopPart        desktop;
  73.     XmShellExtPart        shell;
  74.     XmVendorShellExtPart     vendor;
  75.     XmDialogShellExtPart     dialog;
  76. }XmDialogShellExtRec;
  77.  
  78.  
  79. /********    Private Function Declarations    ********/
  80.  
  81.  
  82. /********    End Private Function Declarations    ********/
  83.  
  84.  
  85. #ifdef __cplusplus
  86. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  87. #endif
  88.  
  89. #endif /* _XmDialogShellExtP_h */
  90. /* DON'T ADD STUFF AFTER THIS #endif */
  91.